home *** CD-ROM | disk | FTP | other *** search
/ Joystick Magazine 1996 May / cd joy 71No13.iso / pc / demos / eurosoc / source / midi.h < prev    next >
C/C++ Source or Header  |  1995-11-21  |  609b  |  26 lines

  1. /* Header File for PEPSI MIDI Audio */
  2.  
  3. #if     !defined(__MIDI_H)
  4. #define __MIDI_H
  5.  
  6. #include "sosm.h"
  7.  
  8. #define MIDI_PATH "MIDI\\"
  9.  
  10. #define BANK_SIZE 5404
  11. #define MT32_SIZE 1404
  12.  
  13. extern short int InitialiseMIDI(void);
  14. extern short int UnInitialiseMIDI(void);
  15. extern short int StartSong(char *song,short int vol);
  16. extern void PauseSong();
  17. extern void ResumeSong();
  18. extern void StopSong();
  19. extern short int CheckSong();
  20. extern void SetMIDIVolume(short int Music);
  21.  
  22. extern WORD MIDIDriverHandle;                // Handle of driver for playing samples
  23. extern WORD SongHandle;
  24.  
  25. #endif  /* __MIDI_H */
  26.